Welcome![Sign In][Sign Up]
Location:
Search - data structure stack

Search list

[Data structsstack-processing

Description: 此程序可实现数据结构中对堆栈的相关操作,例如入栈,出栈-This program data structure can be related to the operation of the stack, such as stack, stack, etc.
Platform: | Size: 306176 | Author: 范特西 | Hits:

[Data structsstack-

Description: 数据结构课程作业,用堆栈实现的四则运算,带括号。-Data structure course work, with the stack of the four operations with brackets.
Platform: | Size: 1024 | Author: 铯钪钪 | Hits:

[Data structsstack

Description: 数据结构 清华大学出版社的 堆栈的使用 基于c语言编程的-Tsinghua University Press of the stack data structure to use based on c language programming
Platform: | Size: 2048 | Author: bylw | Hits:

[Windows DevelopStack

Description: Implementing Stack data structure in c language
Platform: | Size: 1024 | Author: kkkk | Hits:

[Data structsdata-structure

Description: 并查集,并查集扩展,堆,矩形切割,线段树,线段树扩展,线段树应用,字段和,子阵和。-And check collection, and investigations set extensions, stack, rectangular cut, segment tree, expand the tree line, tree line applications, fields, and, sub-array and.
Platform: | Size: 8192 | Author: lsc | Hits:

[Data structsStack

Description: 数据结构的一个标称,关于静态公共类问题的处理方法-A nominal data structure, on the static approach on the issue of public class
Platform: | Size: 1024 | Author: 陆子 | Hits:

[Data structsstack

Description: 这是用c语言写的一个简单的程序,用数据结构实现对栈的操作-It is written in a simple c program, with the data structure of the operation of the stack
Platform: | Size: 130048 | Author: Edie | Hits:

[Data structsThe-program-of-data-structure

Description: 数据结构的例子程序,包含循环队列、链表队列、线性链表、静态链表、堆栈等的实现。-Examples of program data structures, including circular queue, linked list queue, linked list, static list, stack, etc. to achieve.
Platform: | Size: 4729856 | Author: panyiteng | Hits:

[Data structsStack

Description: 用C#语言写了一个堆栈的程序使用数据结构写的大家可以看看提出宝贵意见-Written in C# language uses a stack data structure to write valuable advice we can see
Platform: | Size: 41984 | Author: 朱杰 | Hits:

[Data structscPPdata-structure-experiment

Description: c++的数据结构实验。包括链表,堆栈,排序,图等。-c++ data structure experiments. Includes list, stack, sort, graph, etc.
Platform: | Size: 11264 | Author: ethan | Hits:

[Data structssushuhuan

Description: 用VC++做的一个素数环程序,采用的数据结构师栈-With VC++ to do a prime ring program, teachers use the data structure stack
Platform: | Size: 3072 | Author: 蓝夏军 | Hits:

[Data structsstack

Description: 用C语言实现了数据结构中栈的有关算法,包括初始化顺序栈,插入元素,删除栈顶元素,取栈顶元素-In C language to implement the stack data structure algorithms, including the initialization sequence stack, insert elements, remove the top element, take the top element
Platform: | Size: 1024 | Author: 李工 | Hits:

[Data structsLying-data-structure2

Description: 《大话数据结构》主要内容包含:数据结构介绍、算法推导大O阶的方法;顺序结构与链式结构差异、栈与队列的应用;串的朴素模式匹配、KMP模式匹配算法;二叉树前中后序遍历、赫夫曼树及应用;-" Westward the data structure," the main contents include: Introduction of data structures, algorithms, Big O-order method is derived sequence differences in the structure and chain structure, the application stack and queue series of simple pattern matching, KMP pattern matching algorithm binary ago in post-order traversal, Huffman tree and applications
Platform: | Size: 880640 | Author: 陈雨 | Hits:

[Data structsLying-data-structure9

Description:  《大话数据结构》主要内容包含:数据结构介绍、算法推导大O阶的方法;顺序结构与链式结构差异、栈与队列的应用;串的朴素模式匹配、KMP模式匹配算法;二叉树前中后序遍历、赫夫曼树及应用;图的深度、广度遍历;最小生成树两种算法、最短路径两种算法;拓扑排序与关键路径算法;折半查找、插值查找、斐波那契查找等静态查找;稠密索引、分块索引、倒排索引等索引技术;冒泡、选择、插入等简单排序;希尔、堆、归并、快速等改进排序-" Westward the data structure," the main contents include: Introduction of data structures, algorithms, Big O-order method is derived sequence differences in the structure and chain structure, the application stack and queue series of simple pattern matching, KMP pattern matching algorithm binary ago in post-order traversal, Huffman tree and applications map the depth, breadth traversal minimum spanning two algorithms, the shortest path of two algorithms topological sort and critical path algorithm binary search, interpolation search, Fibonacci search Find other static dense index, block index, inverted index and other indexing techniques bubble, selection, and other simple insertion sort Hill, heap, merge, quick sorting and other improvements
Platform: | Size: 1531904 | Author: 陈雨 | Hits:

[Data structsstop

Description: 由于停车场是一个狭窄通道,问题要求汽车“到达”或“离去”信息。由此很容易联想到数据结构中的堆栈模型,因此可首先设计一个堆栈,以堆栈来模拟停车场,又每个汽车的车牌号都不一样,这样一来可以根据车牌号准确找到汽车位置,所以堆栈里的数据元素我设计成汽车的车牌号。当停车场内某辆车要离开时,在他之后进入的车辆必须先退出车场为它让路,待该辆车开出大门外,其他车辆再按原次序进入停车场。这是一退一进的过程,而且让道的汽车必须保持原有的先后顺序,因此可再设计一个堆栈,以之来暂时存放为出站汽车暂时让道的汽车车牌号。当停车场满后,继续进来的汽车需要停放在停车场旁边的便道上等候,若停车场有汽车开走,则按排队的先后顺序依次进站,最先进入便道的汽车将会最先进入停车场,这完全是一个先进先出模型,因此可设计一个队列来模拟便道,队列中的数据元素仍然设计成汽车的车牌号。另外,停车场根据汽车在停车场内停放的总时长来收费的,在便道上的时间不计费,因此必须记录车辆进入停车场时的时间,车辆离开停车场时的时间不需要记录,当从终端输入时可直接使用。-Because the parking lot is a narrow channels, require car \"reach\" or \"away\" information. This is easy to associate the data structure stack model, it can first design a stack to stack to simulate the parking lot, and each car registration number is different, so can accurately find car according to the plates of the position, so the stack of data elements I designed to the plates of the car. When a car in the parking lot to leave, after his vehicles must first exit into information for way for him, for the car open gate, other vehicles again to the original order into the parking lot. This is a back into the process, and make cars must keep the original of the order, so to design a stack and to temporarily store for the car my way station for car images. When the parking lot after full, continue to come in car needs in the parking lot next to the park on the pavement waiting, if a battered car parking lot, then the order of line up in turn to stop, and the first into the pavement w
Platform: | Size: 3072 | Author: 赵云 | Hits:

[Data structsTrainArrangeApp

Description: 用C#语言实现数据结构堆栈,并用该堆栈应用在火车车厢重排问题中-With the C# language data structure stack, and stack application with the rearrangement in the train car in question
Platform: | Size: 110592 | Author: leijunhuan | Hits:

[Data structsstack

Description: 数据结构中栈的类定义,通过类模板实现了栈的基本功能-Stack data structure in the class definition, through the stack class template implements the basic functions of
Platform: | Size: 525312 | Author: 黄寅飞 | Hits:

[Data structsstack

Description: 数据结构中栈操作的实现,包括出栈,入栈,判断栈是否为空等-Stack data structure operations to achieve, including the stack, the stack, the stack is waited in vain to determine
Platform: | Size: 2048 | Author: chenpeng | Hits:

[Data structsstack

Description: 数据结构程序设计题典程序--书中源码之堆栈实现-Data structure programming problem Code procedures- the book source code implementation of the stack
Platform: | Size: 221184 | Author: 思凡 | Hits:

[Data structsstack

Description: 栈的应用表达式的运用,C语言实现,数据结构课程设计报告,覆盖率报告-The application of the use of the expression stack, C language, data structure curriculum design, coverage report
Platform: | Size: 332800 | Author: 刘星 | Hits:
« 1 2 3 4 5 67 8 9 10 11 ... 45 »

CodeBus www.codebus.net